Subscription: Michael Miller to operations-announce
from 5000:
Subscribe New Person and Contact to Mailinglist| name | value |
|---|---|
| partnerPersonTradeName | Test AG |
| subscriberFamilyName | Miller |
| subscriberGivenName | Michael |
| subscriberEMailAddress | michael.miller@example.org |
| mailingList | operations-discussion |
HTTP GET "/api/hs/office/persons?name=Test+AG" \
-H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
`# {` \
`# "sub" : "uuid<hsh-alex_superuser>"` \
`# }`
=> status: 200 OK
[ {
"uuid" : "efe3662a-02d9-4fa9-a4f0-29dfd893fd78", // Person: Test AG
"personType" : "LEGAL_PERSON",
"tradeName" : "Test AG",
"salutation" : null,
"title" : null,
"givenName" : null,
"familyName" : null
} ]
In production, data this query could result in multiple outputs. In that case, you have to find out which is the right one.
HTTP GET "/api/hs/office/persons?name=Miller" \
-H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
`# {` \
`# "sub" : "uuid<hsh-alex_superuser>"` \
`# }`
=> status: 200 OK
[ {
"uuid" : "93d4b5cc-c436-4172-85c7-8a4b13af8a29",
"personType" : "NATURAL_PERSON",
"tradeName" : null,
"salutation" : null,
"title" : null,
"givenName" : "Michael",
"familyName" : "Miller"
} ]
In real scenarios there are most likely multiple results and you have to choose the right one.
HTTP GET "/api/hs/office/contacts?emailAddress=michael.miller@example.org" \
-H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
`# {` \
`# "sub" : "uuid<hsh-alex_superuser>"` \
`# }`
=> status: 200 OK
[ {
"uuid" : "62cb7858-de45-4f26-91c5-d03afa083440",
"caption" : "Michael Miller",
"postalAddress" : { },
"emailAddresses" : {
"main" : "michael.miller@example.org"
},
"phoneNumbers" : { }
} ]
In real scenarios there are most likely multiple results and you have to choose the right one.
HTTP POST "/api/hs/office/relations" \
-H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
`# {` \
`# "sub" : "uuid<hsh-alex_superuser>"` \
`# }` \
<<EOF
{
"type" : "SUBSCRIBER",
"mark" : "operations-discussion",
"anchor.uuid" : "efe3662a-02d9-4fa9-a4f0-29dfd893fd78", // Person: Test AG
"holder.uuid" : "93d4b5cc-c436-4172-85c7-8a4b13af8a29", // Person: Michael Miller
"contact.uuid" : "62cb7858-de45-4f26-91c5-d03afa083440" // Contact: michael.miller@example.org
}
EOF
=> status: 201 CREATED f84f0f5e-25ee-4953-a673-95c3e3c393cd
generated on 2026-08-10 04:42:27 for branch HEAD